home *** CD-ROM | disk | FTP | other *** search
/ Postcard CD: Niagara Parks / Postcard CD: Niagara Parks (2004).iso / mac / stub2.dxr / 00002.ls < prev    next >
Encoding:
Text File  |  2001-12-19  |  256 b   |  16 lines

  1. global Cpu, Ram, system
  2.  
  3. on checkSystem
  4.   system = 0
  5.   new(xtra("budapi"))
  6.   Cpu = baCpuInfo("speed")
  7.   new(xtra("budapi"))
  8.   Ram = baMemoryInfo("ram")
  9.   if (Cpu > 330) and (Ram > 66770176) then
  10.     system = 1
  11.   end if
  12.   put system
  13.   put Ram
  14.   put Cpu
  15. end
  16.